home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / iomon.arc / IOMON.DOC < prev    next >
Text File  |  1986-08-11  |  1KB  |  44 lines

  1.  
  2. IOMON - Disk I/O monitor                    13-May-86 S.H.Smith
  3.                                             Public domain material
  4.  
  5.  
  6. 'IOMON' is a small resident utility that monitors disk I/O activity.
  7. It intercepts the disk I/O interrupt and displays I/O status information
  8. on the screen during I/O wait periods.
  9.  
  10. The status information is displayed as a single character in the upper
  11. right corner of the screen.
  12.  
  13. The following status codes are displayed:
  14.    I - Initialize function
  15.    R - Read data
  16.    W - Write data
  17.    V - Verify data
  18.    F - Format tracks
  19.    * - Other functions (usually special hard disk functions)
  20.  
  21. IOMON accesses video ram directly to reduce overhead.   It will operate with
  22. displays that are at either B000 or B800.   For other displays, you will
  23. get the message:
  24.    "ERR: CAN'T FIND VIDEO RAM"
  25. IOMON won't work if you get this message.
  26.  
  27. IOMON does not interfere with disk I/O in any way.  It should work properly
  28. with any disk (or ram-disk) that is accessed through the disk services at
  29. INT 13H.
  30.  
  31. If a disk error is detected, IOMON will display the hex error code in flashing
  32. reverse video.  Here is a list of common error codes:
  33.    01 - Illegal function
  34.    02 - Address mark not found
  35.    03 - Write protect error
  36.    04 - Sector not found
  37.    08 - DMA overrun
  38.    09 - Attempt to DMA accross a 64k boundary
  39.    10 - Bad CRS on disk read
  40.    20 - Controller failure
  41.    40 - Seek failure
  42.    80 - Device timeout (device not ready)
  43.  
  44.